home *** CD-ROM | disk | FTP | other *** search
/ PC Zone 96 / PC Zone #096.7z / Dppcz1200.mdf / Demos / Gunlok / data1.cab / Program_Executable_Files / scripts / crateb.gsh < prev    next >
Text File  |  2000-09-09  |  900b  |  33 lines

  1. // defines a normal crateb
  2. ////////////////////////////////////////////////////////////////////////////////////
  3.  
  4. // start wrapper - prevent multiple inclusions or recursive inclusions
  5.  
  6. //(this currently causes 'unrecognized preprocessor directive' warnings, until implemented)
  7. #ifndef INCLUDED_CRATEB_GSH
  8. #define INCLUDED_CRATEB_GSH
  9.  
  10. #include "crateb_frag.gsh"
  11.  
  12. ////////////////////////////////////////////////////////////////////////////////////
  13.  
  14. shape Shp_crateb
  15. {
  16.        file "objects\crateb.rif"
  17.        name "CRATE B"
  18. }
  19.  
  20. role Rol_crateb : Rol_PlacedObject
  21. {
  22.     shape                    Shp_crateb
  23.     identifier                "crateb"
  24.     destructibility            Frg_crateb
  25.     destination selectable    yes
  26.     ai                        blocker
  27. }
  28.  
  29. ////////////////////////////////////////////////////////////////////////////////////
  30.  
  31. // end wrapper - for preventing multiple or recursive inclusions
  32. #endif // !INCLUDED_CRATEB_GSH
  33.